## Warning in instance$preRenderHook(instance): It seems your data is too
## big for client-side DataTables. You may consider server-side processing:
## https://rstudio.github.io/DT/server.html
Histogram
Using the histogram to see the distribution of the data, we are not able to identify any perceptual breaks in the data as all the values in the data are positive and the data appears to be unimodal. Based on these findings, we can determine that the heatmap should only contain one color and for this example purple has been chosen.
hist(DatasetTwo$Count)


## state Type Value
## 1 United States murder 5.6
## 2 Alabama murder 8.2
## 3 Alaska murder 4.8
## 4 Arizona murder 7.5
## 5 Arkansas murder 6.7
## 6 California murder 6.9

##Histogram**
hist(DatasetFour$value)


Histogram
Expression_Level <- DatasetFive$expression_level
hist(Expression_Level)

